This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Kirk Brefreevitchakoi 20.Jan.04 04:46 AM a Web browser Applications Development6.0.2 CF2Windows XP
I'm trying to open a document using a scheduled agent to refresh all the field. It's a complicated forms with over 50 fields. I've tried using computewithform but it didn't work. I've read many posting indicating that this command cannot be relied on for refreshing fields as it's mainly for setting fields to their default value. Is there another way that this can be accomplished??
My script is shown below:
Set NowDoc = ListView.GetFirstDocument()
While Not NowDoc Is Nothing
Call NowDoc.ComputeWithForm(True, False)
Call NowDoc.Save(True, True)
Set NowDoc = ListView.GetNextDocument(NowDoc)
Wend